home *** CD-ROM | disk | FTP | other *** search
/ El Mac 9 / El Mac 9.iso / Shareware / Applications / Charting Coach v1.5 / Charting Coach v1.dxr / 00292.ls < prev    next >
Encoding:
Text File  |  1996-04-08  |  300 b   |  16 lines

  1. on mouseUp
  2.   global currentCycleNo
  3.   if the doubleClick then
  4.     exit
  5.   end if
  6.   set x to the mouseLine
  7.   if (x > 0) and (x <= the number of lines in field "cycle list") then
  8.     cursor(4)
  9.     hilite line x of field "cycle list"
  10.     set currentCycleNo to x
  11.   else
  12.     beep()
  13.   end if
  14.   cursor(0)
  15. end
  16.